home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2001 / MacHack 2001.toast / pc / The Hacks / Palm Finder 2 / Src / App Sources / my_string.cpp < prev    next >
Encoding:
Text File  |  2001-06-23  |  120 b   |  11 lines

  1. // my_string.cpp
  2.  
  3. #include "my_string.h"
  4.  
  5. int strlen(const char* s) {
  6.     int i=0;
  7.     while (s[i]!=0) {
  8.         i++
  9.     }
  10.     return i;
  11. }